// Aufgabe_3_2_Mischung_schwarz

function setup() {
  createCanvas(400, 400);
  background(255);

  blendMode(MULTIPLY);

  fill(255, 0, 0);
  ellipse(250, 150, 200, 200);
  fill(0, 255, 0);
  ellipse(150, 150, 200, 200);
  fill(0, 0, 255);
  ellipse(200, 250, 200, 200);
}
